home *** CD-ROM | disk | FTP | other *** search
/ Speccy ClassiX 1998 / Speccy ClassiX 98.iso / amiga_system / the_aminet / dev / gcc / ixemulsrc.lha / ixemul-41.4 / gnulib / libgcc2.c < prev    next >
C/C++ Source or Header  |  1995-05-27  |  30KB  |  1,386 lines

  1. /* More subroutines needed by GCC output code on some machines.  */
  2. /* Compile this one with gcc.  */
  3. /* Copyright (C) 1989, 1992 Free Software Foundation, Inc.
  4.  
  5. This file is part of GNU CC.
  6.  
  7. GNU CC is free software; you can redistribute it and/or modify
  8. it under the terms of the GNU General Public License as published by
  9. the Free Software Foundation; either version 2, or (at your option)
  10. any later version.
  11.  
  12. GNU CC is distributed in the hope that it will be useful,
  13. but WITHOUT ANY WARRANTY; without even the implied warranty of
  14. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  15. GNU General Public License for more details.
  16.  
  17. You should have received a copy of the GNU General Public License
  18. along with GNU CC; see the file COPYING.  If not, write to
  19. the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.  */
  20.  
  21. /* As a special exception, if you link this library with files
  22.    compiled with GCC to produce an executable, this does not cause
  23.    the resulting executable to be covered by the GNU General Public License.
  24.    This exception does not however invalidate any other reasons why
  25.    the executable file might be covered by the GNU General Public License.  */
  26.  
  27. /* It is incorrect to include config.h here, because this file is being
  28.    compiled for the target, and hence definitions concerning only the host
  29.    do not apply.  */
  30.  
  31. #if 0
  32. #include "tm.h"
  33. #include "gstddef.h"
  34. #else
  35. #include "types.h"
  36. #include <stddef.h>
  37. #endif
  38.  
  39. #include "kprintf.h"
  40.  
  41. /* Don't use `fancy_abort' here even if config.h says to use it.  */
  42. #ifdef abort
  43. #undef abort
  44. #endif
  45.  
  46. /* Need to undef this because LONG_TYPE_SIZE may rely upon GCC's
  47.    internal `target_flags' variable.  */
  48. #undef LONG_TYPE_SIZE
  49.  
  50. #define LONG_TYPE_SIZE (sizeof (long) * BITS_PER_UNIT)
  51.  
  52. #ifndef SItype
  53. #define SItype long int
  54. #endif
  55.  
  56. /* long long ints are pairs of long ints in the order determined by
  57.    WORDS_BIG_ENDIAN.  */
  58.  
  59. #if WORDS_BIG_ENDIAN
  60.   struct longlong {long high, low;};
  61. #else
  62.   struct longlong {long low, high;};
  63. #endif
  64.  
  65. /* We need this union to unpack/pack longlongs, since we don't have
  66.    any arithmetic yet.  Incoming long long parameters are stored
  67.    into the `ll' field, and the unpacked result is read from the struct
  68.    longlong.  */
  69.  
  70. typedef union
  71. {
  72.   struct longlong s;
  73.   long long ll;
  74. } long_long;
  75.  
  76. #if defined (L_udivmoddi4) || defined (L_muldi3)
  77.  
  78. #include "longlong.h"
  79.  
  80. #endif /* udiv or mul */
  81.  
  82. extern long long __fixunssfdi (float a);
  83. extern long long __fixunsdfdi (double a);
  84.  
  85. #if defined (L_negdi2) || defined (L_divdi3) || defined (L_moddi3)
  86. #if defined (L_divdi3) || defined (L_moddi3)
  87. static inline
  88. #endif
  89. long long
  90. __negdi2 (u)
  91.      long long u;
  92. {
  93.   long_long w;
  94.   long_long uu;
  95.  
  96.   uu.ll = u;
  97.  
  98.   w.s.low = -uu.s.low;
  99.   w.s.high = -uu.s.high - ((unsigned long) w.s.low > 0);
  100.  
  101.   return w.ll;
  102. }
  103. #endif
  104.  
  105. #ifdef L_lshldi3
  106. long long
  107. __lshldi3 (u, b)
  108.      long long u;
  109.      int b;
  110. {
  111.   long_long w;
  112.   long bm;
  113.   long_long uu;
  114.  
  115.   if (b == 0)
  116.     return u;
  117.  
  118.   uu.ll = u;
  119.  
  120.   bm = (sizeof (long) * BITS_PER_UNIT) - b;
  121.   if (bm <= 0)
  122.     {
  123.       w.s.low = 0;
  124.       w.s.high = (unsigned long)uu.s.low << -bm;
  125.     }
  126.   else
  127.     {
  128.       unsigned long carries = (unsigned long)uu.s.low >> bm;
  129.       w.s.low = (unsigned long)uu.s.low << b;
  130.       w.s.high = ((unsigned long)uu.s.high << b) | carries;
  131.     }
  132.  
  133.   return w.ll;
  134. }
  135. #endif
  136.  
  137. #ifdef L_lshrdi3
  138. long long
  139. __lshrdi3 (u, b)
  140.      long long u;
  141.      int b;
  142. {
  143.   long_long w;
  144.   long bm;
  145.   long_long uu;
  146.  
  147.   if (b == 0)
  148.     return u;
  149.  
  150.   uu.ll = u;
  151.  
  152.   bm = (sizeof (long) * BITS_PER_UNIT) - b;
  153.   if (bm <= 0)
  154.     {
  155.       w.s.high = 0;
  156.       w.s.low = (unsigned long)uu.s.high >> -bm;
  157.     }
  158.   else
  159.     {
  160.       unsigned long carries = (unsigned long)uu.s.high << bm;
  161.       w.s.high = (unsigned long)uu.s.high >> b;
  162.       w.s.low = ((unsigned long)uu.s.low >> b) | carries;
  163.     }
  164.  
  165.   return w.ll;
  166. }
  167. #endif
  168.  
  169. #ifdef L_ashldi3
  170. long long
  171. __ashldi3 (u, b)
  172.      long long u;
  173.      int b;
  174. {
  175.   long_long w;
  176.   long bm;
  177.   long_long uu;
  178.  
  179.   if (b == 0)
  180.     return u;
  181.  
  182.   uu.ll = u;
  183.  
  184.   bm = (sizeof (long) * BITS_PER_UNIT) - b;
  185.   if (bm <= 0)
  186.     {
  187.       w.s.low = 0;
  188.       w.s.high = (unsigned long)uu.s.low << -bm;
  189.     }
  190.   else
  191.     {
  192.       unsigned long carries = (unsigned long)uu.s.low >> bm;
  193.       w.s.low = (unsigned long)uu.s.low << b;
  194.       w.s.high = ((unsigned long)uu.s.high << b) | carries;
  195.     }
  196.  
  197.   return w.ll;
  198. }
  199. #endif
  200.  
  201. #ifdef L_ashrdi3
  202. long long
  203. __ashrdi3 (u, b)
  204.      long long u;
  205.      int b;
  206. {
  207.   long_long w;
  208.   long bm;
  209.   long_long uu;
  210.  
  211.   if (b == 0)
  212.     return u;
  213.  
  214.   uu.ll = u;
  215.  
  216.   bm = (sizeof (long) * BITS_PER_UNIT) - b;
  217.   if (bm <= 0)
  218.     {
  219.       /* w.s.high = 1..1 or 0..0 */
  220.       w.s.high = uu.s.high >> (sizeof (long) * BITS_PER_UNIT - 1);
  221.       w.s.low = uu.s.high >> -bm;
  222.     }
  223.   else
  224.     {
  225.       unsigned long carries = (unsigned long)uu.s.high << bm;
  226.       w.s.high = uu.s.high >> b;
  227.       w.s.low = ((unsigned long)uu.s.low >> b) | carries;
  228.     }
  229.  
  230.   return w.ll;
  231. }
  232. #endif
  233.  
  234. #ifdef L_muldi3
  235. long long
  236. __muldi3 (u, v)
  237.      long long u, v;
  238. {
  239.   long_long w;
  240.   long_long uu, vv;
  241.  
  242.   uu.ll = u,
  243.   vv.ll = v;
  244.  
  245.   w.ll = __umulsidi3 (uu.s.low, vv.s.low);
  246.   w.s.high += ((unsigned long) uu.s.low * (unsigned long) vv.s.high
  247.            + (unsigned long) uu.s.high * (unsigned long) vv.s.low);
  248.  
  249.   return w.ll;
  250. }
  251. #endif
  252.  
  253. #ifdef L_udivmoddi4
  254. static const unsigned char __clz_tab[] =
  255. {
  256.   0,1,2,2,3,3,3,3,4,4,4,4,4,4,4,4,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,
  257.   6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,
  258.   7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,
  259.   7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,
  260.   8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,
  261.   8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,
  262.   8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,
  263.   8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,
  264. };
  265.  
  266. unsigned long long
  267. __udivmoddi4 (n, d, rp)
  268.      unsigned long long n, d;
  269.      unsigned long long int *rp;
  270. {
  271.   long_long ww;
  272.   long_long nn, dd;
  273.   long_long rr;
  274.   unsigned long d0, d1, n0, n1, n2;
  275.   unsigned long q0, q1;
  276.   unsigned b, bm;
  277.  
  278.   nn.ll = n;
  279.   dd.ll = d;
  280.  
  281.   d0 = dd.s.low;
  282.   d1 = dd.s.high;
  283.   n0 = nn.s.low;
  284.   n1 = nn.s.high;
  285.  
  286. #if !UDIV_NEEDS_NORMALIZATION
  287.   if (d1 == 0)
  288.     {
  289.       if (d0 > n1)
  290.     {
  291.       /* 0q = nn / 0D */
  292.  
  293.       udiv_qrnnd (q0, n0, n1, n0, d0);
  294.       q1 = 0;
  295.  
  296.       /* Remainder in n0.  */
  297.     }
  298.       else
  299.     {
  300.       /* qq = NN / 0d */
  301.  
  302.       if (d0 == 0)
  303.         d0 = 1 / d0;    /* Divide intentionally by zero.  */
  304.  
  305.       udiv_qrnnd (q1, n1, 0, n1, d0);
  306.       udiv_qrnnd (q0, n0, n1, n0, d0);
  307.  
  308.       /* Remainder in n0.  */
  309.     }
  310.  
  311.       if (rp != 0)
  312.     {
  313.       rr.s.low = n0;
  314.       rr.s.high = 0;
  315.       *rp = rr.ll;
  316.     }
  317.     }
  318.  
  319. #else /* UDIV_NEEDS_NORMALIZATION */
  320.  
  321.   if (d1 == 0)
  322.     {
  323.       if (d0 > n1)
  324.     {
  325.       /* 0q = nn / 0D */
  326.  
  327.       count_leading_zeros (bm, d0);
  328.  
  329.       if (bm != 0)
  330.         {
  331.           /* Normalize, i.e. make the most significant bit of the
  332.          denominator set.  */
  333.  
  334.           d0 = d0 << bm;
  335.           n1 = (n1 << bm) | (n0 >> (LONG_TYPE_SIZE - bm));
  336.           n0 = n0 << bm;
  337.         }
  338.  
  339.       udiv_qrnnd (q0, n0, n1, n0, d0);
  340.       q1 = 0;
  341.  
  342.       /* Remainder in n0 >> bm.  */
  343.     }
  344.       else
  345.     {
  346.       /* qq = NN / 0d */
  347.  
  348.       if (d0 == 0)
  349.         d0 = 1 / d0;    /* Divide intentionally by zero.  */
  350.  
  351.       count_leading_zeros (bm, d0);
  352.  
  353.       if (bm == 0)
  354.         {
  355.           /* From (n1 >= d0) /\ (the most significant bit of d0 is set),
  356.          conclude (the most significant bit of n1 is set) /\ (the
  357.          leading quotient digit q1 = 1).
  358.  
  359.          This special case is necessary, not an optimization.
  360.          (Shifts counts of LONG_TYPE_SIZE are undefined.)  */
  361.  
  362.           n1 -= d0;
  363.           q1 = 1;
  364.         }
  365.       else
  366.         {
  367.           /* Normalize.  */
  368.  
  369.           b = LONG_TYPE_SIZE - bm;
  370.  
  371.           d0 = d0 << bm;
  372.           n2 = n1 >> b;
  373.           n1 = (n1 << bm) | (n0 >> b);
  374.           n0 = n0 << bm;
  375.  
  376.           udiv_qrnnd (q1, n1, n2, n1, d0);
  377.         }
  378.  
  379.       /* n1 != d0... */
  380.  
  381.       udiv_qrnnd (q0, n0, n1, n0, d0);
  382.  
  383.       /* Remainder in n0 >> bm.  */
  384.     }
  385.  
  386.       if (rp != 0)
  387.     {
  388.       rr.s.low = n0 >> bm;
  389.       rr.s.high = 0;
  390.       *rp = rr.ll;
  391.     }
  392.     }
  393. #endif /* UDIV_NEEDS_NORMALIZATION */
  394.  
  395.   else
  396.     {
  397.       if (d1 > n1)
  398.     {
  399.       /* 00 = nn / DD */
  400.  
  401.       q0 = 0;
  402.       q1 = 0;
  403.  
  404.       /* Remainder in n1n0.  */
  405.       if (rp != 0)
  406.         {
  407.           rr.s.low = n0;
  408.           rr.s.high = n1;
  409.           *rp = rr.ll;
  410.         }
  411.     }
  412.       else
  413.     {
  414.       /* 0q = NN / dd */
  415.  
  416.       count_leading_zeros (bm, d1);
  417.       if (bm == 0)
  418.         {
  419.           /* From (n1 >= d1) /\ (the most significant bit of d1 is set),
  420.          conclude (the most significant bit of n1 is set) /\ (the
  421.          quotient digit q0 = 0 or 1).
  422.  
  423.          This special case is necessary, not an optimization.  */
  424.  
  425.           /* The condition on the next line takes advantage of that
  426.          n1 >= d1 (true due to program flow).  */
  427.           if (n1 > d1 || n0 >= d0)
  428.         {
  429.           q0 = 1;
  430.           sub_ddmmss (n1, n0, n1, n0, d1, d0);
  431.         }
  432.           else
  433.         q0 = 0;
  434.  
  435.           q1 = 0;
  436.  
  437.           if (rp != 0)
  438.         {
  439.           rr.s.low = n0;
  440.           rr.s.high = n1;
  441.           *rp = rr.ll;
  442.         }
  443.         }
  444.       else
  445.         {
  446.           unsigned long m1, m0;
  447.           /* Normalize.  */
  448.  
  449.           b = LONG_TYPE_SIZE - bm;
  450.  
  451.           d1 = (d1 << bm) | (d0 >> b);
  452.           d0 = d0 << bm;
  453.           n2 = n1 >> b;
  454.           n1 = (n1 << bm) | (n0 >> b);
  455.           n0 = n0 << bm;
  456.  
  457.           udiv_qrnnd (q0, n1, n2, n1, d1);
  458.           umul_ppmm (m1, m0, q0, d0);
  459.  
  460.           if (m1 > n1 || (m1 == n1 && m0 > n0))
  461.         {
  462.           q0--;
  463.           sub_ddmmss (m1, m0, m1, m0, d1, d0);
  464.         }
  465.  
  466.           q1 = 0;
  467.  
  468.           /* Remainder in (n1n0 - m1m0) >> bm.  */
  469.           if (rp != 0)
  470.         {
  471.           sub_ddmmss (n1, n0, n1, n0, m1, m0);
  472.           rr.s.low = (n1 << b) | (n0 >> bm);
  473.           rr.s.high = n1 >> bm;
  474.           *rp = rr.ll;
  475.         }
  476.         }
  477.     }
  478.     }
  479.  
  480.   ww.s.low = q0;
  481.   ww.s.high = q1;
  482.   return ww.ll;
  483. }
  484. #endif
  485.  
  486. #ifdef L_divdi3
  487. unsigned long long __udivmoddi4 ();
  488. long long
  489. __divdi3 (u, v)
  490.      long long u, v;
  491. {
  492.   int c = 0;
  493.   long_long uu, vv;
  494.   long long w;
  495.  
  496.   uu.ll = u;
  497.   vv.ll = v;
  498.  
  499.   if (uu.s.high < 0)
  500.     c = ~c,
  501.     uu.ll = __negdi2 (uu.ll);
  502.   if (vv.s.high < 0)
  503.     c = ~c,
  504.     vv.ll = __negdi2 (vv.ll);
  505.  
  506.   w = __udivmoddi4 (uu.ll, vv.ll, (unsigned long long *) 0);
  507.   if (c)
  508.     w = __negdi2 (w);
  509.  
  510.   return w;
  511. }
  512. #endif
  513.  
  514. #ifdef L_moddi3
  515. unsigned long long __udivmoddi4 ();
  516. long long
  517. __moddi3 (u, v)
  518.      long long u, v;
  519. {
  520.   int c = 0;
  521.   long_long uu, vv;
  522.   long long w;
  523.  
  524.   uu.ll = u;
  525.   vv.ll = v;
  526.  
  527.   if (uu.s.high < 0)
  528.     c = ~c,
  529.     uu.ll = __negdi2 (uu.ll);
  530.   if (vv.s.high < 0)
  531.     vv.ll = __negdi2 (vv.ll);
  532.  
  533.   (void) __udivmoddi4 (uu.ll, vv.ll, &w);
  534.   if (c)
  535.     w = __negdi2 (w);
  536.  
  537.   return w;
  538. }
  539. #endif
  540.  
  541. #ifdef L_umoddi3
  542. unsigned long long __udivmoddi4 ();
  543. unsigned long long
  544. __umoddi3 (u, v)
  545.      unsigned long long u, v;
  546. {
  547.   long long w;
  548.  
  549.   (void) __udivmoddi4 (u, v, &w);
  550.  
  551.   return w;
  552. }
  553. #endif
  554.  
  555. #ifdef L_udivdi3
  556. unsigned long long __udivmoddi4 ();
  557. unsigned long long
  558. __udivdi3 (n, d)
  559.      unsigned long long n, d;
  560. {
  561.   return __udivmoddi4 (n, d, (unsigned long long *) 0);
  562. }
  563. #endif
  564.  
  565. #ifdef L_cmpdi2
  566. SItype
  567. __cmpdi2 (a, b)
  568.      long long a, b;
  569. {
  570.   long_long au, bu;
  571.  
  572.   au.ll = a, bu.ll = b;
  573.  
  574.   if (au.s.high < bu.s.high)
  575.     return 0;
  576.   else if (au.s.high > bu.s.high)
  577.     return 2;
  578.   if ((unsigned long) au.s.low < (unsigned long) bu.s.low)
  579.     return 0;
  580.   else if ((unsigned long) au.s.low > (unsigned long) bu.s.low)
  581.     return 2;
  582.   return 1;
  583. }
  584. #endif
  585.  
  586. #ifdef L_ucmpdi2
  587. SItype
  588. __ucmpdi2 (a, b)
  589.      long long a, b;
  590. {
  591.   long_long au, bu;
  592.  
  593.   au.ll = a, bu.ll = b;
  594.  
  595.   if ((unsigned long) au.s.high < (unsigned long) bu.s.high)
  596.     return 0;
  597.   else if ((unsigned long) au.s.high > (unsigned long) bu.s.high)
  598.     return 2;
  599.   if ((unsigned long) au.s.low < (unsigned long) bu.s.low)
  600.     return 0;
  601.   else if ((unsigned long) au.s.low > (unsigned long) bu.s.low)
  602.     return 2;
  603.   return 1;
  604. }
  605. #endif
  606.  
  607. #ifdef L_fixunsdfdi
  608. #define WORD_SIZE (sizeof (long) * BITS_PER_UNIT)
  609. #define HIGH_WORD_COEFF (((long long) 1) << WORD_SIZE)
  610.  
  611. long long
  612. __fixunsdfdi (a)
  613.      double a;
  614. {
  615.   double b;
  616.   unsigned long long v;
  617.  
  618.   if (a < 0)
  619.     return 0;
  620.  
  621.   /* Compute high word of result, as a flonum.  */
  622.   b = (a / HIGH_WORD_COEFF);
  623.   /* Convert that to fixed (but not to long long!),
  624.      and shift it into the high word.  */
  625.   v = (unsigned long int) b;
  626.   v <<= WORD_SIZE;
  627.   /* Remove high part from the double, leaving the low part as flonum.  */
  628.   a -= (double)v;
  629.   /* Convert that to fixed (but not to long long!) and add it in.
  630.      Sometimes A comes out negative.  This is significant, since
  631.      A has more bits than a long int does.  */
  632.   if (a < 0)
  633.     v -= (unsigned long int) (- a);
  634.   else
  635.     v += (unsigned long int) a;
  636.   return v;
  637. }
  638. #endif
  639.  
  640. #ifdef L_fixdfdi
  641. long long
  642. __fixdfdi (a)
  643.      double a;
  644. {
  645.   if (a < 0)
  646.     return - __fixunsdfdi (-a);
  647.   return __fixunsdfdi (a);
  648. }
  649. #endif
  650.  
  651. #ifdef L_fixunssfdi
  652. #define WORD_SIZE (sizeof (long) * BITS_PER_UNIT)
  653. #define HIGH_WORD_COEFF (((long long) 1) << WORD_SIZE)
  654.  
  655. long long
  656. __fixunssfdi (float original_a)
  657. {
  658.   /* Convert the float to a double, because that is surely not going
  659.      to lose any bits.  Some day someone else can write a faster version
  660.      that avoids converting to double, and verify it really works right.  */
  661.   double a = original_a;
  662.   double b;
  663.   unsigned long long v;
  664.  
  665.   if (a < 0)
  666.     return 0;
  667.  
  668.   /* Compute high word of result, as a flonum.  */
  669.   b = (a / HIGH_WORD_COEFF);
  670.   /* Convert that to fixed (but not to long long!),
  671.      and shift it into the high word.  */
  672.   v = (unsigned long int) b;
  673.   v <<= WORD_SIZE;
  674.   /* Remove high part from the double, leaving the low part as flonum.  */
  675.   a -= (double)v;
  676.   /* Convert that to fixed (but not to long long!) and add it in.
  677.      Sometimes A comes out negative.  This is significant, since
  678.      A has more bits than a long int does.  */
  679.   if (a < 0)
  680.     v -= (unsigned long int) (- a);
  681.   else
  682.     v += (unsigned long int) a;
  683.   return v;
  684. }
  685. #endif
  686.  
  687. #ifdef L_fixsfdi
  688. long long
  689. __fixsfdi (float a)
  690. {
  691.   if (a < 0)
  692.     return - __fixunssfdi (-a);
  693.   return __fixunssfdi (a);
  694. }
  695. #endif
  696.  
  697. #ifdef L_floatdidf
  698. #define WORD_SIZE (sizeof (long) * BITS_PER_UNIT)
  699. #define HIGH_HALFWORD_COEFF (((long long) 1) << (WORD_SIZE / 2))
  700. #define HIGH_WORD_COEFF (((long long) 1) << WORD_SIZE)
  701.  
  702. double
  703. __floatdidf (u)
  704.      long long u;
  705. {
  706.   double d;
  707.   int negate = 0;
  708.  
  709.   if (u < 0)
  710.     u = -u, negate = 1;
  711.  
  712.   d = (unsigned int) (u >> WORD_SIZE);
  713.   d *= HIGH_HALFWORD_COEFF;
  714.   d *= HIGH_HALFWORD_COEFF;
  715.   d += (unsigned int) (u & (HIGH_WORD_COEFF - 1));
  716.  
  717.   return (negate ? -d : d);
  718. }
  719. #endif
  720.  
  721. #ifdef L_floatdisf
  722. #define WORD_SIZE (sizeof (long) * BITS_PER_UNIT)
  723. #define HIGH_HALFWORD_COEFF (((long long) 1) << (WORD_SIZE / 2))
  724. #define HIGH_WORD_COEFF (((long long) 1) << WORD_SIZE)
  725.  
  726. float
  727. __floatdisf (u)
  728.      long long u;
  729. {
  730.   float f;
  731.   int negate = 0;
  732.  
  733.   if (u < 0)
  734.     u = -u, negate = 1;
  735.  
  736.   f = (unsigned int) (u >> WORD_SIZE);
  737.   f *= HIGH_HALFWORD_COEFF;
  738.   f *= HIGH_HALFWORD_COEFF;
  739.   f += (unsigned int) (u & (HIGH_WORD_COEFF - 1));
  740.  
  741.   return (negate ? -f : f);
  742. }
  743. #endif
  744.  
  745. #ifdef L_fixunsdfsi
  746. #include "limits.h"
  747.  
  748. unsigned SItype
  749. __fixunsdfsi (a)
  750.      double a;
  751. {
  752.   if (a >= - (double) LONG_MIN)
  753.     return (SItype) (a + LONG_MIN) - LONG_MIN;
  754.   return (SItype) a;
  755. }
  756. #endif
  757.  
  758. #ifdef L_fixunssfsi
  759. #include "limits.h"
  760.  
  761. unsigned SItype
  762. __fixunssfsi (float a)
  763. {
  764.   if (a >= - (float) LONG_MIN)
  765.     return (SItype) (a + LONG_MIN) - LONG_MIN;
  766.   return (SItype) a;
  767. }
  768. #endif
  769.  
  770. #ifdef L_varargs
  771. #ifdef __i860__
  772. #ifdef SVR4
  773.     asm ("    .text");
  774.     asm ("    .align    4");
  775.  
  776.     asm (".globl    __builtin_saveregs");
  777. asm ("__builtin_saveregs:");
  778.     asm ("    andnot    0x0f,%sp,%sp");    /* round down to 16-byte boundary */
  779.     asm ("    adds    -96,%sp,%sp");  /* allocate stack space for reg save
  780.                        area and also for a new va_list
  781.                        structure */
  782.     /* Save all argument registers in the arg reg save area.  The
  783.        arg reg save area must have the following layout (according
  784.        to the svr4 ABI):
  785.  
  786.         struct {
  787.           union  {
  788.             float freg[8];
  789.             double dreg[4];
  790.           } float_regs;
  791.           long    ireg[12];
  792.         };
  793.     */
  794.  
  795.     asm ("    fst.q    %f8,  0(%sp)"); /* save floating regs (f8-f15)  */
  796.     asm ("    fst.q    %f12,16(%sp)"); 
  797.  
  798.     asm ("    st.l    %r16,32(%sp)"); /* save integer regs (r16-r27) */
  799.     asm ("    st.l    %r17,36(%sp)"); 
  800.     asm ("    st.l    %r18,40(%sp)");
  801.     asm ("    st.l    %r19,44(%sp)");
  802.     asm ("    st.l    %r20,48(%sp)");
  803.     asm ("    st.l    %r21,52(%sp)");
  804.     asm ("    st.l    %r22,56(%sp)");
  805.     asm ("    st.l    %r23,60(%sp)");
  806.     asm ("    st.l    %r24,64(%sp)");
  807.     asm ("    st.l    %r25,68(%sp)");
  808.     asm ("    st.l    %r26,72(%sp)");
  809.     asm ("    st.l    %r27,76(%sp)");
  810.  
  811.     asm ("    adds    80,%sp,%r16");  /* compute the address of the new
  812.                        va_list structure.  Put in into
  813.                        r16 so that it will be returned
  814.                        to the caller.  */
  815.  
  816.     /* Initialize all fields of the new va_list structure.  This
  817.        structure looks like:
  818.  
  819.         typedef struct {
  820.             unsigned long    ireg_used;
  821.             unsigned long    freg_used;
  822.             long        *reg_base;
  823.             long        *mem_ptr;
  824.         } va_list;
  825.     */
  826.  
  827.     asm ("    st.l    %r0, 0(%r16)"); /* nfixed */
  828.     asm ("    st.l    %r0, 4(%r16)"); /* nfloating */
  829.     asm ("  st.l    %sp, 8(%r16)"); /* __va_ctl points to __va_struct.  */
  830.     asm ("    bri    %r1");        /* delayed return */
  831.     asm ("    st.l    %r28,12(%r16)"); /* pointer to overflow args */
  832.  
  833. #else /* not SVR4 */
  834.     asm ("    .text");
  835.     asm ("    .align    4");
  836.  
  837.     asm (".globl    ___builtin_saveregs");
  838.     asm ("___builtin_saveregs:");
  839.     asm ("    mov    sp,r30");
  840.     asm ("    andnot    0x0f,sp,sp");
  841.     asm ("    adds    -96,sp,sp");  /* allocate sufficient space on the stack */
  842.  
  843. /* Fill in the __va_struct.  */
  844.     asm ("    st.l    r16, 0(sp)"); /* save integer regs (r16-r27) */
  845.     asm ("    st.l    r17, 4(sp)"); /* int    fixed[12] */
  846.     asm ("    st.l    r18, 8(sp)");
  847.     asm ("    st.l    r19,12(sp)");
  848.     asm ("    st.l    r20,16(sp)");
  849.     asm ("    st.l    r21,20(sp)");
  850.     asm ("    st.l    r22,24(sp)");
  851.     asm ("    st.l    r23,28(sp)");
  852.     asm ("    st.l    r24,32(sp)");
  853.     asm ("    st.l    r25,36(sp)");
  854.     asm ("    st.l    r26,40(sp)");
  855.     asm ("    st.l    r27,44(sp)");
  856.  
  857.     asm ("    fst.q    f8, 48(sp)"); /* save floating regs (f8-f15) */
  858.     asm ("    fst.q    f12,64(sp)"); /* int floating[8] */
  859.  
  860. /* Fill in the __va_ctl.  */
  861.     asm ("  st.l    sp, 80(sp)"); /* __va_ctl points to __va_struct.  */
  862.     asm ("    st.l    r28,84(sp)"); /* pointer to more args */
  863.     asm ("    st.l    r0, 88(sp)"); /* nfixed */
  864.     asm ("    st.l    r0, 92(sp)"); /* nfloating */
  865.  
  866.     asm ("    adds    80,sp,r16");  /* return address of the __va_ctl.  */
  867.     asm ("    bri    r1");
  868.     asm ("    mov    r30,sp");
  869.                 /* recover stack and pass address to start 
  870.                    of data.  */
  871. #endif /* not SVR4 */
  872. #else /* not __i860__ */
  873. #ifdef __sparc__
  874.     asm (".global ___builtin_saveregs");
  875.     asm ("___builtin_saveregs:");
  876.     asm ("st %i0,[%fp+68]");
  877.     asm ("st %i1,[%fp+72]");
  878.     asm ("st %i2,[%fp+76]");
  879.     asm ("st %i3,[%fp+80]");
  880.     asm ("st %i4,[%fp+84]");
  881.     asm ("retl");
  882.     asm ("st %i5,[%fp+88]");
  883. #else /* not __sparc__ */
  884. #if defined(__MIPSEL__) | defined(__R3000__) | defined(__R2000__) | defined(__mips__)
  885.  
  886.   asm ("    .text");
  887.   asm ("    .ent __builtin_saveregs");
  888.   asm ("    .globl __builtin_saveregs");
  889.   asm ("__builtin_saveregs:");
  890.   asm ("    sw    $4,0($30)");
  891.   asm ("    sw    $5,4($30)");
  892.   asm ("    sw    $6,8($30)");
  893.   asm ("    sw    $7,12($30)");
  894.   asm ("    j    $31");
  895.   asm ("    .end __builtin_saveregs");
  896. #else /* not __mips__, etc. */
  897. __builtin_saveregs ()
  898. {
  899.   abort ();
  900. }
  901. #endif /* not __mips__ */
  902. #endif /* not __sparc__ */
  903. #endif /* not __i860__ */
  904. #endif
  905.  
  906. #ifdef L_eprintf
  907. #undef NULL /* Avoid errors if stdio.h and our stddef.h mismatch.  */
  908. #include <stdio.h>
  909. /* This is used by the `assert' macro.  */
  910. void
  911. __eprintf (string, expression, line, filename)
  912.      char *string;
  913.      char *expression;
  914.      int line;
  915.      char *filename;
  916. {
  917.   fprintf (stderr, string, expression, line, filename);
  918.   fflush (stderr);
  919.   abort ();
  920. }
  921. #endif
  922.  
  923. #ifdef L_bb
  924. /* Avoid warning from ranlib about empty object file.  */
  925. void
  926. __bb_avoid_warning ()
  927. {}
  928.  
  929. #if defined (__sun__) && defined (__mc68000__)
  930. struct bb
  931. {
  932.   int initialized;
  933.   char *filename;
  934.   int *counts;
  935.   int ncounts;
  936.   int zero_word;
  937.   int *addresses;
  938. };
  939.  
  940. extern int ___tcov_init;
  941.  
  942. __bb_init_func (blocks)
  943.     struct bb *blocks;
  944. {
  945.   if (! ___tcov_init)
  946.     ___tcov_init_func ();
  947.  
  948.   ___bb_link (blocks->filename, blocks->counts, blocks->ncounts);
  949. }
  950.  
  951. #endif
  952. #endif
  953.  
  954. /* frills for C++ */
  955.  
  956. #ifdef L_builtin_new
  957. typedef void (*vfp)(void);
  958.  
  959. extern vfp __new_handler;
  960.  
  961. void *
  962. __builtin_new (sz)
  963.      long sz;
  964. {
  965.   void *p;
  966.  
  967.   p = (void *) malloc (sz);
  968.   if (p == 0)
  969.     (*__new_handler) ();
  970.   return p;
  971. }
  972. #endif
  973.  
  974. #ifdef L_builtin_New
  975. typedef void (*vfp)(void);
  976.  
  977. static void default_new_handler ();
  978.  
  979. vfp __new_handler = default_new_handler;
  980.  
  981. void *
  982. __builtin_vec_new (p, maxindex, size, ctor)
  983.      void *p;
  984.      int maxindex, size;
  985.      void (*ctor)(void *);
  986. {
  987.   int i, nelts = maxindex + 1;
  988.   void *rval;
  989.  
  990.   if (p == 0)
  991.     p = (void *)__builtin_new (nelts * size);
  992.  
  993.   rval = p;
  994.  
  995.   for (i = 0; i < nelts; i++)
  996.     {
  997.       (*ctor) (p);
  998.       p += size;
  999.     }
  1000.  
  1001.   return rval;
  1002. }
  1003.  
  1004. vfp
  1005. __set_new_handler (handler)
  1006.      vfp handler;
  1007. {
  1008.   vfp prev_handler;
  1009.  
  1010.   prev_handler = __new_handler;
  1011.   if (handler == 0) handler = default_new_handler;
  1012.   __new_handler = handler;
  1013.   return prev_handler;
  1014. }
  1015.  
  1016. vfp
  1017. set_new_handler (handler)
  1018.      vfp handler;
  1019. {
  1020.   return __set_new_handler (handler);
  1021. }
  1022.  
  1023. static void
  1024. default_new_handler ()
  1025. {
  1026.   /* don't use fprintf (stderr, ...) because it may need to call malloc.  */
  1027.   /* This should really print the name of the program, but that is hard to
  1028.      do.  We need a standard, clean way to get at the name.  */
  1029.   write (2, "Virtual memory exceeded in `new'\n", 33);
  1030.   /* don't call exit () because that may call global destructors which
  1031.      may cause a loop.  */
  1032.   _exit (-1);
  1033. }
  1034. #endif
  1035.  
  1036. #ifdef L_builtin_del
  1037. typedef void (*vfp)(void);
  1038.  
  1039. void
  1040. __builtin_delete (ptr)
  1041.      void *ptr;
  1042. {
  1043.   if (ptr)
  1044.     free (ptr);
  1045. }
  1046.  
  1047. void
  1048. __builtin_vec_delete (ptr, maxindex, size, dtor, auto_delete_vec, auto_delete)
  1049.      void *ptr;
  1050.      int maxindex, size;
  1051.      void (*dtor)();
  1052.      int auto_delete;
  1053. {
  1054.   int i, nelts = maxindex + 1;
  1055.   void *p = ptr;
  1056.  
  1057.   ptr += nelts * size;
  1058.  
  1059.   for (i = 0; i < nelts; i++)
  1060.     {
  1061.       ptr -= size;
  1062.       (*dtor) (ptr, auto_delete);
  1063.     }
  1064.  
  1065.   if (auto_delete_vec)
  1066.     __builtin_delete (p);
  1067. }
  1068.  
  1069. #endif
  1070.  
  1071. #ifdef L_shtab
  1072. unsigned int __shtab[] = {
  1073.     0x00000001, 0x00000002, 0x00000004, 0x00000008,
  1074.     0x00000010, 0x00000020, 0x00000040, 0x00000080,
  1075.     0x00000100, 0x00000200, 0x00000400, 0x00000800,
  1076.     0x00001000, 0x00002000, 0x00004000, 0x00008000,
  1077.     0x00010000, 0x00020000, 0x00040000, 0x00080000,
  1078.     0x00100000, 0x00200000, 0x00400000, 0x00800000,
  1079.     0x01000000, 0x02000000, 0x04000000, 0x08000000,
  1080.     0x10000000, 0x20000000, 0x40000000, 0x80000000
  1081.   };
  1082. #endif
  1083.  
  1084. #ifdef L_clear_cache
  1085. /* Clear part of an instruction cache.  */
  1086.  
  1087. #define INSN_CACHE_PLANE_SIZE (INSN_CACHE_SIZE / INSN_CACHE_DEPTH)
  1088.  
  1089. void
  1090. __clear_cache (beg, end)
  1091.      char *beg, *end;
  1092. {
  1093. #ifdef INSN_CACHE_SIZE
  1094.   static char array[INSN_CACHE_SIZE + INSN_CACHE_PLANE_SIZE + INSN_CACHE_LINE_WIDTH];
  1095.   static int initialized = 0;
  1096.   int offset;
  1097.   unsigned int start_addr, end_addr;
  1098.   typedef (*function_ptr) ();
  1099.  
  1100. #if (INSN_CACHE_SIZE / INSN_CACHE_LINE_WIDTH) < 16
  1101.   /* It's cheaper to clear the whole cache.
  1102.      Put in a series of jump instructions so that calling the beginning
  1103.      of the cache will clear the whole thing.  */
  1104.  
  1105.   if (! initialized)
  1106.     {
  1107.       int ptr = (((int) array + INSN_CACHE_LINE_WIDTH - 1)
  1108.          & -INSN_CACHE_LINE_WIDTH);
  1109.       int end_ptr = ptr + INSN_CACHE_SIZE;
  1110.  
  1111.       while (ptr < end_ptr)
  1112.     {
  1113.       *(INSTRUCTION_TYPE *)ptr
  1114.         = JUMP_AHEAD_INSTRUCTION + INSN_CACHE_LINE_WIDTH;
  1115.       ptr += INSN_CACHE_LINE_WIDTH;
  1116.     }
  1117.       *(INSTRUCTION_TYPE *)(ptr - INSN_CACHE_LINE_WIDTH) = RETURN_INSTRUCTION;
  1118.  
  1119.       initialized = 1;
  1120.     }
  1121.  
  1122.   /* Call the beginning of the sequence.  */
  1123.   (((function_ptr) (((int) array + INSN_CACHE_LINE_WIDTH - 1)
  1124.             & -INSN_CACHE_LINE_WIDTH))
  1125.    ());
  1126.  
  1127. #else /* Cache is large.  */
  1128.  
  1129.   if (! initialized)
  1130.     {
  1131.       int ptr = (((int) array + INSN_CACHE_LINE_WIDTH - 1)
  1132.          & -INSN_CACHE_LINE_WIDTH);
  1133.  
  1134.       while (ptr < (int) array + sizeof array)
  1135.     {
  1136.       *(INSTRUCTION_TYPE *)ptr = RETURN_INSTRUCTION;
  1137.       ptr += INSN_CACHE_LINE_WIDTH;
  1138.     }
  1139.  
  1140.       initialized = 1;
  1141.     }
  1142.  
  1143.   /* Find the location in array that occupies the same cache line as BEG.  */
  1144.  
  1145.   offset = ((int) beg & -INSN_CACHE_LINE_WIDTH) & (INSN_CACHE_PLANE_SIZE - 1);
  1146.   start_addr = (((int) (array + INSN_CACHE_PLANE_SIZE - 1)
  1147.          & -INSN_CACHE_PLANE_SIZE)
  1148.         + offset);
  1149.  
  1150.   /* Compute the cache alignment of the place to stop clearing.  */
  1151. #if 0  /* This is not needed for gcc's purposes.  */
  1152.   /* If the block to clear is bigger than a cache plane,
  1153.      we clear the entire cache, and OFFSET is already correct.  */ 
  1154.   if (end < beg + INSN_CACHE_PLANE_SIZE)
  1155. #endif
  1156.     offset = (((int) (end + INSN_CACHE_LINE_WIDTH - 1)
  1157.            & -INSN_CACHE_LINE_WIDTH)
  1158.           & (INSN_CACHE_PLANE_SIZE - 1));
  1159.  
  1160. #if INSN_CACHE_DEPTH > 1
  1161.   end_addr = (start_addr & -INSN_CACHE_PLANE_SIZE) + offset;
  1162.   if (end_addr <= start_addr)
  1163.     end_addr += INSN_CACHE_PLANE_SIZE;
  1164.  
  1165.   for (plane = 0; plane < INSN_CACHE_DEPTH; plane++)
  1166.     {
  1167.       int addr = start_addr + plane * INSN_CACHE_PLANE_SIZE;
  1168.       int stop = end_addr + plane * INSN_CACHE_PLANE_SIZE;
  1169.  
  1170.       while (addr != stop)
  1171.     {
  1172.       /* Call the return instruction at ADDR.  */
  1173.       ((function_ptr) addr) ();
  1174.  
  1175.       addr += INSN_CACHE_LINE_WIDTH;
  1176.     }
  1177.     }
  1178. #else /* just one plane */
  1179.   do
  1180.     {
  1181.       /* Call the return instruction at START_ADDR.  */
  1182.       ((function_ptr) start_addr) ();
  1183.  
  1184.       start_addr += INSN_CACHE_LINE_WIDTH;
  1185.     }
  1186.   while ((start_addr % INSN_CACHE_SIZE) != offset);
  1187. #endif /* just one plane */
  1188. #endif /* Cache is large */
  1189. #endif /* Cache exists */
  1190. }
  1191.  
  1192. #endif /* L_clear_cache */
  1193.  
  1194. #ifdef L_trampoline
  1195.  
  1196. /* Jump to a trampoline, loading the static chain address.  */
  1197.  
  1198. #ifdef TRANSFER_FROM_TRAMPOLINE 
  1199. TRANSFER_FROM_TRAMPOLINE 
  1200. #endif
  1201.  
  1202. #ifdef __convex__
  1203.  
  1204. /* Make stack executable so we can call trampolines on stack.
  1205.    This is called from INITIALIZE_TRAMPOLINE in convex.h.  */
  1206.  
  1207. #include <sys/mman.h>
  1208. #include <sys/vmparam.h>
  1209. #include <machine/machparam.h>
  1210.  
  1211. void
  1212. __enable_execute_stack ()
  1213. {
  1214.   int fp;
  1215.   static unsigned lowest = USRSTACK;
  1216.   unsigned current = (unsigned) &fp & -NBPG;
  1217.  
  1218.   if (lowest > current)
  1219.     {
  1220.       unsigned len = lowest - current;
  1221.       mremap (current, &len, PROT_READ | PROT_WRITE | PROT_EXEC, MAP_PRIVATE);
  1222.       lowest = current;
  1223.     }
  1224.  
  1225.   /* Clear instruction cache in case an old trampoline is in it. */
  1226.   asm ("pich");
  1227. }
  1228. #endif /* __convex__ */
  1229. #endif /* L_trampoline */
  1230.  
  1231. #ifdef L__main
  1232.  
  1233. #include "gbl-ctors.h"
  1234.  
  1235. /* Run all the global destructors on exit from the program.  */
  1236.  
  1237. void
  1238. __do_global_dtors ()
  1239. {
  1240. #ifdef DO_GLOBAL_DTORS_BODY
  1241.   DO_GLOBAL_DTORS_BODY;
  1242. #else
  1243.   int nptrs = *(int *)__DTOR_LIST__;
  1244.   int i;
  1245.  
  1246.   /* Some systems place the number of pointers
  1247.      in the first word of the table.
  1248.      On other systems, that word is -1.
  1249.      In all cases, the table is null-terminated.  */
  1250.  
  1251.   /* If the length is not recorded, count up to the null.  */
  1252.   if (nptrs == -1)
  1253.     for (nptrs = 0; __DTOR_LIST__[nptrs + 1] != 0; nptrs++);
  1254.  
  1255.   /* GNU LD format.  */
  1256.   for (i = nptrs; i >= 1; i--)
  1257.     __DTOR_LIST__[i] ();
  1258. #endif
  1259. }
  1260.  
  1261. #ifndef INIT_SECTION_ASM_OP
  1262. /* Run all the global constructors on entry to the program.  */
  1263.  
  1264. #ifndef ON_EXIT
  1265. #define ON_EXIT(a, b)
  1266. #else
  1267. /* Make sure the exit routine is pulled in to define the globals as
  1268.    bss symbols, just in case the linker does not automatically pull
  1269.    bss definitions from the library.  */
  1270.  
  1271. extern int _exit_dummy_decl;
  1272. int *_exit_dummy_ref = &_exit_dummy_decl;
  1273. #endif /* ON_EXIT */
  1274.  
  1275. void
  1276. __do_global_ctors ()
  1277. {
  1278.   DO_GLOBAL_CTORS_BODY;
  1279.   ON_EXIT (__do_global_dtors, 0);
  1280. }
  1281.  
  1282. /* Subroutine called automatically by `main'.
  1283.    Compiling a global function named `main'
  1284.    produces an automatic call to this function at the beginning.
  1285.  
  1286.    For many systems, this routine calls __do_global_ctors.
  1287.    For systems which support a .init section we use the .init section
  1288.    to run __do_global_ctors, so we need not do anything here.  */
  1289.  
  1290. void
  1291. __main ()
  1292. {
  1293.   /* Support recursive calls to `main': run initializers just once.  */
  1294.   static initialized = 0;
  1295.   if (! initialized)
  1296.     {
  1297.       initialized = 1;
  1298.       __do_global_ctors ();
  1299.     }
  1300. }
  1301. #endif /* no INIT_SECTION_ASM_OP */
  1302.  
  1303. #endif /* L__main */
  1304.  
  1305. #ifdef L_exit
  1306.  
  1307. #include "gbl-ctors.h"
  1308.  
  1309. /* Provide default definitions for the lists of constructors and
  1310.    destructors, so that we don't get linker errors.  These symbols are
  1311.    intentionally bss symbols, so that gld and/or collect will provide
  1312.    the right values.  */
  1313.  
  1314. /* We declare the lists here with two elements each,
  1315.    so that they are valid empty lists if no other definition is loaded.  */
  1316. #ifndef INIT_SECTION_ASM_OP
  1317. func_ptr __CTOR_LIST__[2];
  1318. func_ptr __DTOR_LIST__[2];
  1319. #endif /* INIT_SECTION_ASM_OP */
  1320.  
  1321. #ifndef ON_EXIT
  1322.  
  1323. /* If we have no known way of registering our own __do_global_dtors
  1324.    routine so that it will be invoked at program exit time, then we
  1325.    have to define our own exit routine which will get this to happen.  */
  1326.  
  1327. extern void __do_global_dtors ();
  1328. extern void _cleanup ();
  1329. extern void _exit () __attribute__ ((noreturn));
  1330.  
  1331. void 
  1332. exit (status)
  1333.      int status;
  1334. {
  1335.  
  1336.   __do_global_dtors ();
  1337.  
  1338. #ifdef EXIT_BODY
  1339.   EXIT_BODY;
  1340. #else
  1341.   _cleanup ();
  1342. #endif
  1343.   _exit (status);
  1344. }
  1345.  
  1346. #else
  1347. int _exit_dummy_decl = 0;    /* prevent compiler & linker warnings */
  1348. #endif
  1349.  
  1350. #endif /* L_exit */
  1351.  
  1352. /* In a.out systems, we need to have these dummy constructor and destructor
  1353.    lists in the library.
  1354.  
  1355.    When using `collect', the first link will resolve __CTOR_LIST__
  1356.    and __DTOR_LIST__ to these symbols.  We will then run "nm" on the
  1357.    result, build the correct __CTOR_LIST__ and __DTOR_LIST__, and relink.
  1358.    Since we don't do the second link if no constructors existed, these
  1359.    dummies must be fully functional empty lists.
  1360.  
  1361.    When using `gnu ld', these symbols will be used if there are no
  1362.    constructors.  If there are constructors, the N_SETV symbol defined
  1363.    by the linker from the N_SETT's in input files will define __CTOR_LIST__
  1364.    and __DTOR_LIST__ rather than its being allocated as common storage
  1365.    by the definitions below.
  1366.  
  1367.    When using a linker that supports constructor and destructor segments,
  1368.    these definitions will not be used, since crtbegin.o and crtend.o
  1369.    (from crtstuff.c) will have already defined __CTOR_LIST__ and
  1370.     __DTOR_LIST__.  The crt*.o files are passed directly to the linker
  1371.    on its command line, by gcc.  */
  1372.  
  1373. /* The list needs two elements:  one is ignored (the old count); the
  1374.    second is the terminating zero.  Since both values are zero, this
  1375.    declaration is not initialized, and it becomes `common'.  */
  1376.  
  1377. #ifdef L_ctor_list
  1378. #include "gbl-ctors.h"
  1379. func_ptr __CTOR_LIST__[2];
  1380. #endif
  1381.  
  1382. #ifdef L_dtor_list
  1383. #include "gbl-ctors.h"
  1384. func_ptr __DTOR_LIST__[2];
  1385. #endif
  1386.